home *** CD-ROM | disk | FTP | other *** search
- unloadMovieNum(1);
- view_scores = "";
- my_ranking = "";
- num = "1";
- max_possible_score = "50000";
- while(numplayers >= num)
- {
- if(eval("score_" add num) < max_possible_score)
- {
- numbers = numbers add num add "\r";
- names = names add eval("name_" add num) add "\r";
- scores = scores add eval("score_" add num) add "\r";
- }
- num += "1";
- }
- if(justlooking != "1")
- {
- num = "1";
- while(num < numplayers)
- {
- if(my_score == eval("score" add "_" add num) and my_name == eval("name" add "_" add num))
- {
- my_ranking = "YOU\'RE RANKED IN POSITION " add num add "!";
- }
- num += "1";
- }
- if(my_ranking eq "")
- {
- my_ranking = "YOUR NOT ONE OF THE TOP " add numplayers add " PLAYERS, SORRY!";
- }
- }
- else
- {
- my_ranking = "TRY TO BEAT YOUR PREVIOUS BEST FIRST!";
- if(eval("/:compromised") == "1")
- {
- my_ranking = "game performance compromised! it\'s not fair to submit an unfairly achieved score!";
- }
- }
- my_score = "0";
- stop();
-